CO-3490: Fix changelog extractor flow and unify QA workflows - #53
Open
Andreas Kempe (AndreasKempeJTL) wants to merge 6 commits into
Open
CO-3490: Fix changelog extractor flow and unify QA workflows#53Andreas Kempe (AndreasKempeJTL) wants to merge 6 commits into
Andreas Kempe (AndreasKempeJTL) wants to merge 6 commits into
Conversation
Copilot started reviewing on behalf of
Patrick Gugelsberger (Patrick-Gugelsberger)
July 14, 2026 13:50
View session
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the project’s CI/CD setup by consolidating QA checks into a single reusable workflow, wiring release build/deploy to depend on that centralized QA gate, and adjusting the changelog-extractor trigger/inputs for release publishing.
Changes:
- Convert
check.yamlinto a reusable workflow (workflow_call) and fold actionlint/shellcheck into it as a dedicated “Lint” job. - Make the release
build-and-deployworkflow depend on the centralized QA workflow instead of duplicating QA logic. - Update the changelog extraction workflow configuration (including Jira prefix and Atlassian secrets) and remove the legacy auto-draft and standalone lint workflows.
Reviewed changes
Copilot reviewed 8 out of 11 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
logs/.gitkeep |
Keeps the logs directory tracked in git. |
includes/JtlConnector.php |
Adds PHPCS side-effects suppression around the ABSPATH guard. |
composer.lock |
Adds dependency lockfile to the repository. |
.gitignore |
Stops ignoring composer.lock and adds ignores for var/ and .phpunit.cache. |
.github/workflows/update-changelog.yaml |
Adjusts reusable changelog workflow reference and inputs/secrets. |
.github/workflows/check.yaml |
Refactors into reusable CI workflow; adds lint job and updates PHP QA steps. |
.github/workflows/build-and-deploy.yaml |
Adds a QA gate job and makes build depend on it. |
.github/workflows/auto-draft-pr.yaml |
Removes auto draft PR workflow. |
.github/workflows/lint-scripts.yaml |
Removes standalone script lint workflow (moved into check.yaml). |
.github/workflows/lint-actions.yaml |
Removes standalone actions lint workflow (moved into check.yaml). |
.github/scripts/run-phpcs.sh |
Removes custom PHPCS runner script (now runs via Composer script in CI). |
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Notes